home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / select.c < prev    next >
C/C++ Source or Header  |  1989-03-22  |  2KB  |  77 lines

  1. /* 
  2.  * select.c --
  3.  *
  4.  *    Procedure to map from Unix select system call to Sprite.
  5.  *
  6.  * Copyright 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/select.c,v 1.2 89/03/22 12:20:49 douglis Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "status.h"
  16. #include "fs.h"
  17. #include "compatInt.h"
  18. #include <sys/time.h>
  19.  
  20.  
  21. /*
  22.  *----------------------------------------------------------------------
  23.  *
  24.  * select --
  25.  *
  26.  *    Procedure to map from Unix select system call to Sprite Fs_Select.
  27.  *
  28.  * Results:
  29.  *    UNIX_ERROR is returned upon error, with the actual error code
  30.  *    stored in errno.  The number of ready descriptors is returned
  31.  *    upon success.
  32.  *
  33.  * Side effects:
  34.  *    None.
  35.  *
  36.  *----------------------------------------------------------------------
  37.  */
  38.  
  39. int
  40. select(width, readfds, writefds, exceptfds, timeout)
  41.     int width, *readfds, *writefds, *exceptfds;
  42.     struct timeval *timeout;
  43. {
  44.     ReturnStatus status;    /* result returned by Fs_Select */
  45.     int numReady;
  46.     Time spriteTimeout;
  47.     Time *timeoutPtr = NULL;
  48.  
  49.     if (timeout != NULL) {
  50.     spriteTimeout.seconds = timeout->tv_sec;
  51.     spriteTimeout.microseconds = timeout->tv_usec;
  52.     timeoutPtr = &spriteTimeout;
  53.     }
  54.     status = Fs_RawSelect(width, timeoutPtr, readfds, writefds,
  55.               exceptfds, &numReady);
  56.  
  57.     if (status != SUCCESS) {
  58.     if (status == FS_TIMEOUT) {
  59.         if (readfds != NULL) {
  60.         *readfds = 0;
  61.         }
  62.         if (writefds != NULL) {
  63.         *writefds = 0;
  64.         }
  65.         if (exceptfds != NULL) {
  66.         *exceptfds = 0;
  67.         }
  68.         return(0);
  69.     } else {
  70.         errno = Compat_MapCode(status);
  71.         return(UNIX_ERROR);
  72.     }
  73.     } else {
  74.     return(numReady);
  75.     }
  76. }
  77.